home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1999 / MacHack 1999.toast / The Hacks / OutOfContextMenus / Source / CFlipBehavior.h < prev    next >
Encoding:
Text File  |  1999-06-23  |  546 b   |  26 lines  |  [TEXT/CWIE]

  1. // ===========================================================================
  2. //    CFlipBehavior.h                 ©1999 Eric Traut
  3. // ===========================================================================
  4.  
  5. #pragma once
  6.  
  7. #include "COffscreenBehavior.h"
  8.  
  9.  
  10. class CFlipBehavior : public COffscreenBehavior
  11. {
  12.     public:
  13.         CFlipBehavior(    CShadowWindow &        inShadowWindow,
  14.                         Boolean                inHorizontal);
  15.  
  16.         virtual Boolean
  17.         RenderToGWorld(    StGWorldLocker &        inBackingLocker,
  18.                         StGWorldLocker &        inRenderingLocker);
  19.  
  20.     private:
  21.         Boolean            mHorizontal;
  22. };
  23.  
  24.  
  25.  
  26.